home *** CD-ROM | disk | FTP | other *** search
- /* This file simulates a giant shared object. In real life
- * there would be many source files and many object files used
- * to build the object.
- */
-
- #include <stdio.h>
-
- void func1() {
- printf("This is the old func1.\n\n");
- }
-
- void func2() {
- printf("This is the old func2, which is buggy.\n\n");
- }
-
- void func3() {
- printf("This is the old func3, which calls func2.\n");
- func2();
- }
-